home *** CD-ROM | disk | FTP | other *** search
/ BCI NET / BCI NET Dec 94.iso / archives / programming / blitzbasic / blitz-list200994.lha / blitz-list / 000455_blitz-list-request_Mon Jul 4 07:40:36 1994.msg < prev    next >
Internet Message Format  |  1994-09-20  |  2KB

  1. Received: from zeus (zeus.usq.edu.au [139.86.128.2]) by kantti.helsinki.fi (8.6.9/8.6.5) with SMTP id HAA21419 for <blitz-list@helsinki.fi>; Mon, 4 Jul 1994 07:40:28 +0300
  2. Received: from helios.usq.edu.au (helios) by zeus with SMTP id AA10316
  3.   (5.65c/IDA-1.4.4); Mon, 4 Jul 1994 14:37:43 -1000
  4. Message-Id: <199407050037.AA10316@zeus>
  5. Received: by helios.usq.edu.au
  6. From: tom duncan <duncan@zeus.usq.edu.au>
  7. Subject: Re: TextEntry problem
  8. To: msaw1@mdw089.cc.monash.edu.au (Mr M Sawicki)
  9. Date: Mon, 4 Jul 1994 14:35:20 +1000 (EST)
  10. Cc: blitz-list@helsinki.fi
  11. In-Reply-To: <Pine.3.07.9407041227.A5235-a100000@mdw089.cc.monash.edu.au> from "Mr M Sawicki" at Jul 4, 94 12:53:28 pm
  12. MIME-Version: 1.0
  13. Content-Type: text/plain; charset="us-ascii"
  14. Content-Transfer-Encoding: 7bit
  15. X-Status: 
  16. Status: RO
  17.  
  18. > On Mon, 4 Jul 1994, tom duncan wrote:
  19. > > Hi all,
  20. > >     Having a couple of problems.
  21. > > 
  22. > >     1. Text Entry program by Mark Tiffany
  23. > > I have a few Token messed up.
  24. > > Any ideas were these come from. I thought by blitzlibs were up-to-date
  25. > > 
  26. > > USEPATH TextEntryInfo
  27. > >   t$=StripTrail$(t$,Asc(" "))
  28. > >   ot$=t$
  29. > >   If \Winw>????? Then \Winw=?????
  30. > >   If \Winh>????? Then \Winh=?????
  31. > >   If \Winx+\Winw>????? Then \Winx=?????-\Winw
  32. > >   If \Winy+\Winh>????? Then \Winy=?????-\Winh
  33. > >
  34. > ??????? - Means that a token is not found. It happened to me when I tried
  35. > running a program for which library was not installed.  
  36. > > 
  37. > >     2. ROL
  38. > > I need to do a 4 bit ROL and havn't a clue on setting up the registers.
  39. > > Any ideas anyone.
  40. > No need to. All you have to do is
  41. > a ROL 4 <- this will rotate a 4 times to the left.
  42.  
  43. tried that
  44.     a ROL 4
  45.     a=a ROL 4
  46.     a=(a ROL 4)
  47.  
  48. errors with each and every one.
  49.  
  50. Tom D
  51.  
  52.  
  53. > You may have to use a=a ROL 4 but I think above should work. For more info
  54. > check out user guide.
  55. > Maciek.
  56.  
  57.